blob: 721eb408515826e25ad39f546a810c7207c8deb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// app/vendor-data/page.tsx
import * as React from "react"
import { Separator } from "@/components/ui/separator"
export default async function IndexPage() {
return (
<div className="space-y-6">
<div className="grid gap-4">
<div className="rounded-lg border p-4">
<h4 className="text-sm font-medium">시작하는 방법</h4>
<p className="text-sm text-muted-foreground mt-1">
오른쪽 상단에서 프로젝트/계약을 선택하세요.<br />
</p>
</div>
</div>
</div>
)
}
|